home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 February: Technology Seed / Mac Tech Seed Feb '97.toast / OpenDoc 1.2b2c1 / Implementation / OpenDocSetup / BetterFindFolder.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-13  |  829 b   |  48 lines  |  [TEXT/CWIE]

  1. /*
  2.     File:        BetterFindFolder.h
  3.  
  4.     Contains:    xxx put contents here xxx
  5.  
  6.     Owned by:    Nick Pilch
  7.  
  8.     Copyright:    © 1996 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.  
  12.          <2>     6/23/96    NP        10002: Launch time speedups.
  13.          <1>     6/21/96    NP        first checked in
  14.  
  15.     To Do:
  16. */
  17.  
  18. /*
  19. **    (C) Copyright 1995-1996 Damon Cokenias All Rights Reserved
  20. **    Permission is granted to use and distribute this source code freely so long
  21. **    as this copyright notice is not changed.
  22. */
  23.  
  24.  
  25. #ifndef BETTERFINDFOLDER_H
  26. #define BETTERFINDFOLDER_H
  27.  
  28. #ifndef __TYPES__
  29. #include <Types.h>
  30. #endif
  31.  
  32. #ifdef __cplusplus
  33. extern "C" {
  34. #endif
  35.  
  36. #define    kAppFolderType            'APPF'
  37.  
  38. pascal
  39. OSErr    BetterFindFolder (short vRefNum, OSType folderType, Boolean createFolder,
  40.             short* foundVRefNum, long* foundDirID);
  41.  
  42. #ifdef __cplusplus
  43. }
  44. #endif
  45.  
  46. #endif
  47.  
  48.